/* CSS Document*/
*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, img, table, tbody, video, input {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	outline: none;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
	color: #0181df;
}
body {
	font-family: Microsoft YaHei, "微软雅黑", "宋体", SimSun;
	font-size: 16px;
	color: #000;
	background: #f5fbff;
	min-width: 1260px;
}
@font-face{
	font-family:'方正大标宋简体';
	src:url('../font/FZDBSJW.TTF'),
}

/*默认滚动条*/
::-webkit-scrollbar {
	width: 15px;
	height: 15px;
	background: #fff;
}
::-webkit-scrollbar-track {/*定义滚动条轨道 内阴影+圆角*/
	-webkit-box-shadow: inset 0 0 6px #fff);
	background: #fff;/*外轨道*/
}
::-webkit-scrollbar-thumb {/*定义滑块 内阴影+圆角*/
	border-radius: 15px;
	-webkit-box-shadow: inset 0 0 6px #ccc;
	background:#ccc;
}
::-webkit-scrollbar-thumb:hover {
	border-radius: 15px;
	-webkit-box-shadow: inset 0 0 6px #bbb;
	background:#bbb;
}

/*首页 ******************************************/
.sy_box{
	float: left;
	width: 100%;
	min-height: 400px;
	overflow: hidden;
}
.sy_top{
	width: 100%;
	height: 600px;
    display: flex;
    justify-content: center;
    position: relative;
	overflow: hidden;
}
.sy_top .bg{
	width: 100%;
	height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.sy_top .box{
	width: 1200px;
    display: flex;
    margin: 80px 0;
    justify-content: space-between;
    z-index: 10;
    overflow: hidden;
}
/* logo */
.sy_logo{
    width: 400px;
    height: 110px;
    margin-top: 50px;
}
.sy_logo img{
    width: auto;
    height: 100%;
}
/* 搜索 */
.sy_search{
    width: 400px;
    position: relative;
}
.sy_search input.sr{
    width: 100%;
    height: 46px;
    padding: 0 55px 0 25px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}
.sy_search img,.sy_search input.ss{
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 10;
    cursor: pointer;
}
.sy_search input.ss{
    z-index: 11;
    opacity: 0;
    background-color: #fff;
}
.sy_search input.ss:hover{
    opacity: 0.5;
}
/* 导航 */
.sy_nav{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: #0181df;
	overflow: hidden;
}
.sy_nav ul{
	width: 1200px;
    padding: 8px 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.sy_nav ul li{
	width: 100%;
    display: flex;
}
.sy_nav ul li a{
	width: 90%;
	height: 45px;
	line-height: 45px;
    margin: 0 5%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.sy_nav ul li a:hover{
	font-weight: bold;
    border-radius: 10px;
    background: #0060a7;
}


/*主内容*/
.sy_main{
	width: 1200px;
	height: auto;
	padding: 20px;
	margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    border-bottom: solid 5px #0181df;
	background: #fff;
	overflow: hidden;
}

/*banner*/
.focus {
	float: left;
	width: 670px;
	height: auto;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
}
.focus .prev, .focus .next {
	position: absolute;
	display: block;
	left: 10px;
	top: 158px;
	width: 33px;
	height: 33px;
	cursor: pointer;
	background: url(focusAdvBg.png) no-repeat;
	opacity: 0.6;
}
.focus .next {
	left: auto;
	right: 10px;
	background-position: -33px 0;
}
.focus .prev:hover, .focus .next:hover {
	opacity: 1;
}
.focusIn {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.focusIn .bd{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.focusIn .bd ul,.focusIn .bd ul li,.focusIn .bd ul li a{
	width: 100%;
	height: 380px;
	position: relative;
	overflow: hidden;
}
.focusIn .bd ul li img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	overflow: hidden;
}
.focusIn .bd ul li div.txt {
	width: 100%;
	height: auto;
	padding: 10px 120px 10px 20px;
	position: absolute;
	left: 0px;
	bottom: 5px;
	z-index: 10;
	background: rgba(0,0,0,0.6);
	overflow: hidden;
}
.focusIn .bd ul li div.txt h3{
	width: 100%;
	line-height: 25px;
	font-size: 16px;
	color: #fff;
}
.focusIn .bd ul li div.txt .p{
	width: 100%;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	color: #ccc;
	text-overflow:ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.focusIn .bd ul li div.txt:hover h3{
	color: #0181df;
}
.focusIn .hd {
	width: 100px;
    position: absolute;
    right: 20px;
    bottom: 17px;
    z-index: 10;
	overflow: hidden;
}
.focusIn .hd ul{
    width: 100%;
	display: flex;
    justify-content: flex-end;
}
.focusIn .hd ul li {
	width: 10px;
	height: 10px;
	cursor: pointer;
    margin: 0 5px;
    border-radius: 10px;
    flex: none;
	background: #ece5d5;
}
.focusIn .hd ul li:first-child {
	margin-left: 0px;
}
.focusIn .hd ul li.on {
	background: #0181df;
}
/* 新闻 版式一 */
.sy_news{
    width: 470px;
    height: 380px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
}
.sy_news .hd, .sy_news .hd ul{
    width: 100%;
    margin-bottom: 4px;
    display: flex;
    flex: none;
    position: relative;
    overflow: hidden;
}
.sy_news .hd ul::before{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 8px;
    z-index: 1;
    background: #ddd;
}
.sy_news .hd ul li{
    width: 123px;
    height: 48px;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
.sy_news .hd ul li img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    overflow: hidden;
}
.sy_news .hd ul li.on img{
    display: block;
}
.sy_news .hd ul li a{
    line-height: 39px;
    font-size: 20px;
    color: #666;
    display: block;
    position: relative;
    z-index: 10;
    text-align: center;
}
.sy_news .hd ul li.on{
    color: #fff;
    font-weight: bold;
    background: url(../images/new_nav1.png)no-repeat center bottom;
}
.sy_news .hd ul li.on a{
    color: #fff;
    font-weight: bold;
}
.sy_news .bd, .sy_news .bd ul{
    width: 100%;
    height: 320px;
    display: flex;
    flex-flow: column nowrap;
}
.sy_news .bd ul li{
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    position: relative;
}
.sy_news .bd ul li::before{
    content: '';
    width: 0;
    height: 0;
    margin-right: 5px;
    flex: none;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #0181df transparent transparent;
    transform: rotate(180deg); 
}
.sy_news .bd ul li a{
    width: 100%;
    line-height: 40px;
    text-overflow:ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sy_news .bd ul li span{
    width: auto;
    margin-left: 20px;
    color: #999;
    flex: none;
}
/* 新闻 版式二 */
.sy_news1{
    width: 570px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
}
.m_left{
    margin-left: 20px;
}
.sy_news1 .bt{
    width: 100%;
    padding: 0 10px 5px 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 2px #ddd;
    overflow: hidden;
}
.sy_news1 .bt h3{
    width: 110px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sy_news1 .bt h3 img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}
.sy_news1 .bt h3 span{
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 10;
}
.sy_news1 .bt a{
    font-size: 16px;
    color: #999;
}
.sy_news1 .bt a:hover{
    color: #0181df;
}
.sy_news1 ul{
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
}
.sy_news1 ul li{
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    position: relative;
}
.sy_news1 ul li::before{
    content: '';
    width: 4px;
    height: 4px;
    margin-right: 8px;
    flex: none;
    background: #333;
}
.sy_news1 ul li a{
    width: 100%;
    line-height: 40px;
    text-overflow:ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sy_news1 ul li span{
    width: auto;
    margin-left: 20px;
    color: #999;
    flex: none;
}
/* 按钮 */
.sy_btns{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
.sy_btns a{
    width: 32%;
    height: 120px;
    margin: 0 0 20px 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #ddd;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.sy_btns a .wx{
    width: 200px;
    height: 200px;
    margin-left: -100px;
    position: absolute;
    bottom: 130px;
    left: 50%;
    z-index: 100;
    display: none;
    border: solid 1px #ddd;
    overflow: hidden;
}
.sy_btns a:hover{
    background: #f1f1f1;
}
.sy_btns a:nth-child(3n+1){
    margin-left: 0;
}
/* 友情链接 */
.sy_link{
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
}
.sy_link h3{
    font-size: 18px;
    font-weight: bold;
    padding-left: 30px;
    margin-bottom: 15px;
    background: url(../images/new_link.png)no-repeat left center;
    background-size: 19px 19px;
}
.sy_link ul{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-flow: row wrap;
    border: solid 1px #ddd;
    overflow: hidden;
}
.sy_link ul li{
    width: 25%;
    padding: 10px 0;
    font-size: 16px;
    cursor: pointer;
}
.sy_link ul li:hover{
    color: #0181df;
}
/* footer */
.new_footer{
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
    overflow: hidden;
}
.new_footer div.sm{
    margin: 0 100px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.new_footer div.sm p{
    padding: 10px 0;
    font-size: 16px;
}
.new_footer div.sm p span, .new_footer div.sm p a{
    margin: 0 20px;
}
.new_footer img{
    cursor: pointer;
}
@media screen and (max-width: 1600px){
    .sy_top{
        height: 500px;
        background: url(../images/new_bg.jpg) no-repeat center bottom;
        background-size: auto 100%;
    }
    .sy_top .box{
        margin: 60px 0;
    }
    /* logo */
    .sy_logo{
        height: 100px;
    }
}